projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
44368f8
)
(x_draw_glyphs): Don't call notice_overwritten_cursor
author
Jason Rumney
<jasonr@gnu.org>
Sat, 5 Jan 2002 00:46:01 +0000
(
00:46
+0000)
committer
Jason Rumney
<jasonr@gnu.org>
Sat, 5 Jan 2002 00:46:01 +0000
(
00:46
+0000)
if OVERLAPS_P.
src/w32term.c
patch
|
blob
|
history
diff --git
a/src/w32term.c
b/src/w32term.c
index 8a007602dd277f4488675dc2d4530691225e1b9a..edb4263a0ffd5b2dbe3d5a988f7a2244ce0f60b5 100644
(file)
--- a/
src/w32term.c
+++ b/
src/w32term.c
@@
-5040,7
+5040,12
@@
x_draw_glyphs (w, x, row, area, start, end, hl, overlaps_p)
for (s = head; s; s = s->next)
x_draw_glyph_string (s);
- if (area == TEXT_AREA && !row->full_width_p)
+ if (area == TEXT_AREA
+ && !row->full_width_p
+ /* When drawing overlapping rows, only the glyph strings'
+ foreground is drawn, which doesn't erase a cursor
+ completely. */
+ && !overlaps_p)
{
int x0 = head ? head->x : x;
int x1 = tail ? tail->x + tail->background_width : x;